[USER (data scientist)]: I would appreciate a visualization of laptop prices within the $800 to $1500 range. How about creating a histogram for that? Please generate and display a histogram (figure datatype) to visualize the distribution of laptop prices within the budget range of $800 to $1500 in the 'laptops_price' dataset.
My template of code snippet is:

---BEGIN CODE TEMPLATE---

import pandas as pd
import pickle
import matplotlib.pyplot as plt 

laptops_price = pd.read_csv("laptops_price.csv")

# YOUR SOLUTION BEGIN:
<code1>
[GENERATE YOUR CODE]
</code1>
# YOUR SOLUTION END:

plt.savefig('./pred_result/hist_chart.png')
plt.show()

---END CODE TEMPLATE---

[YOU (AI assistant)]: Sure thing! Here's the code to create a histogram showing the distribution of laptop prices within the budget range of $800 to $1500:
